home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / distutils / sysconfig.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  15KB  |  487 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. """Provide access to Python's configuration information.  The specific
  5. configuration variables available depend heavily on the platform and
  6. configuration.  The values may be retrieved using
  7. get_config_var(name), and the list of variables is available via
  8. get_config_vars().keys().  Additional convenience functions are also
  9. available.
  10.  
  11. Written by:   Fred L. Drake, Jr.
  12. Email:        <fdrake@acm.org>
  13. """
  14. __revision__ = '$Id: sysconfig.py 52234 2006-10-08 17:50:26Z ronald.oussoren $'
  15. import os
  16. import re
  17. import string
  18. import sys
  19. from distutils.errors import DistutilsPlatformError
  20. PREFIX = os.path.normpath(sys.prefix)
  21. EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
  22. argv0_path = os.path.dirname(os.path.abspath(sys.executable))
  23. landmark = os.path.join(argv0_path, 'Modules', 'Setup')
  24. python_build = os.path.isfile(landmark)
  25. del landmark
  26.  
  27. def get_python_version():
  28.     """Return a string containing the major and minor Python version,
  29.     leaving off the patchlevel.  Sample return values could be '1.5'
  30.     or '2.2'.
  31.     """
  32.     return sys.version[:3]
  33.  
  34.  
  35. def get_python_inc(plat_specific = 0, prefix = None):
  36.     """Return the directory containing installed Python header files.
  37.  
  38.     If 'plat_specific' is false (the default), this is the path to the
  39.     non-platform-specific header files, i.e. Python.h and so on;
  40.     otherwise, this is the path to platform-specific header files
  41.     (namely pyconfig.h).
  42.  
  43.     If 'prefix' is supplied, use it instead of sys.prefix or
  44.     sys.exec_prefix -- i.e., ignore 'plat_specific'.
  45.     """
  46.     if prefix is None:
  47.         if not plat_specific or EXEC_PREFIX:
  48.             pass
  49.         prefix = PREFIX
  50.     
  51.     if os.name == 'posix':
  52.         if python_build:
  53.             base = os.path.dirname(os.path.abspath(sys.executable))
  54.             if plat_specific:
  55.                 inc_dir = base
  56.             else:
  57.                 inc_dir = os.path.join(base, 'Include')
  58.                 if not os.path.exists(inc_dir):
  59.                     inc_dir = os.path.join(os.path.dirname(base), 'Include')
  60.                 
  61.             return inc_dir
  62.         
  63.         if not sys.pydebug or '_d':
  64.             pass
  65.         return os.path.join(prefix, 'include', 'python' + get_python_version() + '')
  66.     elif os.name == 'nt':
  67.         return os.path.join(prefix, 'include')
  68.     elif os.name == 'mac':
  69.         if plat_specific:
  70.             return os.path.join(prefix, 'Mac', 'Include')
  71.         else:
  72.             return os.path.join(prefix, 'Include')
  73.     elif os.name == 'os2':
  74.         return os.path.join(prefix, 'Include')
  75.     else:
  76.         raise DistutilsPlatformError("I don't know where Python installs its C header files on platform '%s'" % os.name)
  77.  
  78.  
  79. def get_python_lib(plat_specific = 0, standard_lib = 0, prefix = None):
  80.     """Return the directory containing the Python library (standard or
  81.     site additions).
  82.  
  83.     If 'plat_specific' is true, return the directory containing
  84.     platform-specific modules, i.e. any module from a non-pure-Python
  85.     module distribution; otherwise, return the platform-shared library
  86.     directory.  If 'standard_lib' is true, return the directory
  87.     containing standard Python library modules; otherwise, return the
  88.     directory for site-specific modules.
  89.  
  90.     If 'prefix' is supplied, use it instead of sys.prefix or
  91.     sys.exec_prefix -- i.e., ignore 'plat_specific'.
  92.     """
  93.     if prefix is None:
  94.         if not plat_specific or EXEC_PREFIX:
  95.             pass
  96.         prefix = PREFIX
  97.     
  98.     if os.name == 'posix':
  99.         libpython = os.path.join(prefix, 'lib', 'python' + get_python_version())
  100.         if standard_lib:
  101.             return libpython
  102.         else:
  103.             return os.path.join(libpython, 'site-packages')
  104.     elif os.name == 'nt':
  105.         if standard_lib:
  106.             return os.path.join(prefix, 'Lib')
  107.         elif get_python_version() < '2.2':
  108.             return prefix
  109.         else:
  110.             return os.path.join(PREFIX, 'Lib', 'site-packages')
  111.     elif os.name == 'mac':
  112.         if plat_specific:
  113.             if standard_lib:
  114.                 return os.path.join(prefix, 'Lib', 'lib-dynload')
  115.             else:
  116.                 return os.path.join(prefix, 'Lib', 'site-packages')
  117.         elif standard_lib:
  118.             return os.path.join(prefix, 'Lib')
  119.         else:
  120.             return os.path.join(prefix, 'Lib', 'site-packages')
  121.     elif os.name == 'os2':
  122.         if standard_lib:
  123.             return os.path.join(PREFIX, 'Lib')
  124.         else:
  125.             return os.path.join(PREFIX, 'Lib', 'site-packages')
  126.     else:
  127.         raise DistutilsPlatformError("I don't know where Python installs its library on platform '%s'" % os.name)
  128.  
  129.  
  130. def customize_compiler(compiler):
  131.     """Do any platform-specific customization of a CCompiler instance.
  132.  
  133.     Mainly needed on Unix, so we can plug in the information that
  134.     varies across Unices and is stored in Python's Makefile.
  135.     """
  136.     if compiler.compiler_type == 'unix':
  137.         (cc, cxx, opt, extra_cflags, basecflags, cflags, ccshared, ldshared, so_ext) = get_config_vars('CC', 'CXX', 'OPT', 'EXTRA_CFLAGS', 'BASECFLAGS', 'CFLAGS', 'CCSHARED', 'LDSHARED', 'SO')
  138.         if os.environ.has_key('CC'):
  139.             cc = os.environ['CC']
  140.         
  141.         if os.environ.has_key('CXX'):
  142.             cxx = os.environ['CXX']
  143.         
  144.         if os.environ.has_key('LDSHARED'):
  145.             ldshared = os.environ['LDSHARED']
  146.         
  147.         if os.environ.has_key('CPP'):
  148.             cpp = os.environ['CPP']
  149.         else:
  150.             cpp = cc + ' -E'
  151.         if os.environ.has_key('LDFLAGS'):
  152.             ldshared = ldshared + ' ' + os.environ['LDFLAGS']
  153.         
  154.         if os.environ.has_key('BASECFLAGS'):
  155.             basecflags = os.environ['BASECFLAGS']
  156.         
  157.         if os.environ.has_key('OPT'):
  158.             opt = os.environ['OPT']
  159.         
  160.         cflags = ' '.join((lambda .0: for x in .0:
  161. if x:
  162. str(x)continue)((basecflags, opt, extra_cflags)))
  163.         if os.environ.has_key('CFLAGS'):
  164.             cflags = ' '.join((lambda .0: for x in .0:
  165. if x:
  166. str(x)continue)((basecflags, opt, os.environ['CFLAGS'], extra_cflags)))
  167.             ldshared = ldshared + ' ' + os.environ['CFLAGS']
  168.         
  169.         if os.environ.has_key('CPPFLAGS'):
  170.             cpp = cpp + ' ' + os.environ['CPPFLAGS']
  171.             cflags = cflags + ' ' + os.environ['CPPFLAGS']
  172.             ldshared = ldshared + ' ' + os.environ['CPPFLAGS']
  173.         
  174.         cc_cmd = cc + ' ' + cflags
  175.         compiler.set_executables(preprocessor = cpp, compiler = cc_cmd, compiler_so = cc_cmd + ' ' + ccshared, compiler_cxx = cxx, linker_so = ldshared, linker_exe = cc)
  176.         compiler.shared_lib_extension = so_ext
  177.     
  178.  
  179.  
  180. def get_config_h_filename():
  181.     '''Return full pathname of installed pyconfig.h file.'''
  182.     if python_build:
  183.         inc_dir = argv0_path
  184.     else:
  185.         inc_dir = get_python_inc(plat_specific = 1)
  186.     if get_python_version() < '2.2':
  187.         config_h = 'config.h'
  188.     else:
  189.         config_h = 'pyconfig.h'
  190.     return os.path.join(inc_dir, config_h)
  191.  
  192.  
  193. def get_makefile_filename():
  194.     '''Return full pathname of installed Makefile from the Python build.'''
  195.     if python_build:
  196.         return os.path.join(os.path.dirname(sys.executable), 'Makefile')
  197.     
  198.     lib_dir = get_python_lib(plat_specific = 1, standard_lib = 1)
  199.     if not sys.pydebug or '_d':
  200.         pass
  201.     return os.path.join(lib_dir, 'config' + '', 'Makefile')
  202.  
  203.  
  204. def parse_config_h(fp, g = None):
  205.     '''Parse a config.h-style file.
  206.  
  207.     A dictionary containing name/value pairs is returned.  If an
  208.     optional dictionary is passed in as the second argument, it is
  209.     used instead of a new dictionary.
  210.     '''
  211.     if g is None:
  212.         g = { }
  213.     
  214.     define_rx = re.compile('#define ([A-Z][A-Za-z0-9_]+) (.*)\n')
  215.     undef_rx = re.compile('/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n')
  216.     while None:
  217.         line = fp.readline()
  218.         if not line:
  219.             break
  220.         
  221.         m = define_rx.match(line)
  222.         if m:
  223.             (n, v) = m.group(1, 2)
  224.             
  225.             try:
  226.                 v = int(v)
  227.             except ValueError:
  228.                 pass
  229.  
  230.             g[n] = v
  231.             continue
  232.         m = undef_rx.match(line)
  233.         if m:
  234.             g[m.group(1)] = 0
  235.             continue
  236.         continue
  237.         return g
  238.  
  239. _variable_rx = re.compile('([a-zA-Z][a-zA-Z0-9_]+)\\s*=\\s*(.*)')
  240. _findvar1_rx = re.compile('\\$\\(([A-Za-z][A-Za-z0-9_]*)\\)')
  241. _findvar2_rx = re.compile('\\${([A-Za-z][A-Za-z0-9_]*)}')
  242.  
  243. def parse_makefile(fn, g = None):
  244.     '''Parse a Makefile-style file.
  245.  
  246.     A dictionary containing name/value pairs is returned.  If an
  247.     optional dictionary is passed in as the second argument, it is
  248.     used instead of a new dictionary.
  249.     '''
  250.     TextFile = TextFile
  251.     import distutils.text_file
  252.     fp = TextFile(fn, strip_comments = 1, skip_blanks = 1, join_lines = 1)
  253.     if g is None:
  254.         g = { }
  255.     
  256.     done = { }
  257.     notdone = { }
  258.     while None:
  259.         line = fp.readline()
  260.         if line is None:
  261.             break
  262.         
  263.         m = _variable_rx.match(line)
  264.         if m:
  265.             (n, v) = m.group(1, 2)
  266.             v = string.strip(v)
  267.             if '$' in v:
  268.                 notdone[n] = v
  269.             else:
  270.                 
  271.                 try:
  272.                     v = int(v)
  273.                 except ValueError:
  274.                     pass
  275.  
  276.                 done[n] = v
  277.         continue
  278.         while notdone:
  279.             for name in notdone.keys():
  280.                 value = notdone[name]
  281.                 if not _findvar1_rx.search(value):
  282.                     pass
  283.                 m = _findvar2_rx.search(value)
  284.                 if m:
  285.                     n = m.group(1)
  286.                     found = True
  287.                     if done.has_key(n):
  288.                         item = str(done[n])
  289.                     elif notdone.has_key(n):
  290.                         found = False
  291.                     elif os.environ.has_key(n):
  292.                         item = os.environ[n]
  293.                     else:
  294.                         done[n] = item = ''
  295.                     if found:
  296.                         after = value[m.end():]
  297.                         value = value[:m.start()] + item + after
  298.                         if '$' in after:
  299.                             notdone[name] = value
  300.                         else:
  301.                             
  302.                             try:
  303.                                 value = int(value)
  304.                             except ValueError:
  305.                                 done[name] = string.strip(value)
  306.  
  307.                             done[name] = value
  308.                             del notdone[name]
  309.                     
  310.                 found
  311.                 del notdone[name]
  312.             
  313.         fp.close()
  314.         g.update(done)
  315.         return g
  316.  
  317.  
  318. def expand_makefile_vars(s, vars):
  319.     '''Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in
  320.     \'string\' according to \'vars\' (a dictionary mapping variable names to
  321.     values).  Variables not present in \'vars\' are silently expanded to the
  322.     empty string.  The variable values in \'vars\' should not contain further
  323.     variable expansions; if \'vars\' is the output of \'parse_makefile()\',
  324.     you\'re fine.  Returns a variable-expanded version of \'s\'.
  325.     '''
  326.     while not _findvar1_rx.search(s):
  327.         m = _findvar2_rx.search(s)
  328.         if m:
  329.             (beg, end) = m.span()
  330.             s = s[0:beg] + vars.get(m.group(1)) + s[end:]
  331.             continue
  332.     break
  333.     continue
  334.     return s
  335.  
  336. _config_vars = None
  337.  
  338. def _init_posix():
  339.     '''Initialize the module as appropriate for POSIX systems.'''
  340.     global _config_vars
  341.     g = { }
  342.     
  343.     try:
  344.         filename = get_makefile_filename()
  345.         parse_makefile(filename, g)
  346.     except IOError:
  347.         msg = None
  348.         my_msg = 'invalid Python installation: unable to open %s' % filename
  349.         if hasattr(msg, 'strerror'):
  350.             my_msg = my_msg + ' (%s)' % msg.strerror
  351.         
  352.         raise DistutilsPlatformError(my_msg)
  353.  
  354.     
  355.     try:
  356.         filename = get_config_h_filename()
  357.         parse_config_h(file(filename), g)
  358.     except IOError:
  359.         msg = None
  360.         my_msg = 'invalid Python installation: unable to open %s' % filename
  361.         if hasattr(msg, 'strerror'):
  362.             my_msg = my_msg + ' (%s)' % msg.strerror
  363.         
  364.         raise DistutilsPlatformError(my_msg)
  365.  
  366.     if sys.platform == 'darwin' and g.has_key('MACOSX_DEPLOYMENT_TARGET'):
  367.         cfg_target = g['MACOSX_DEPLOYMENT_TARGET']
  368.         cur_target = os.getenv('MACOSX_DEPLOYMENT_TARGET', '')
  369.         if cur_target == '':
  370.             cur_target = cfg_target
  371.             os.putenv('MACOSX_DEPLOYMENT_TARGET', cfg_target)
  372.         elif map(int, cfg_target.split('.')) > map(int, cur_target.split('.')):
  373.             my_msg = '$MACOSX_DEPLOYMENT_TARGET mismatch: now "%s" but "%s" during configure' % (cur_target, cfg_target)
  374.             raise DistutilsPlatformError(my_msg)
  375.         
  376.     
  377.     if python_build:
  378.         g['LDSHARED'] = g['BLDSHARED']
  379.     elif get_python_version() < '2.1':
  380.         if sys.platform == 'aix4':
  381.             python_lib = get_python_lib(standard_lib = 1)
  382.             ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix')
  383.             python_exp = os.path.join(python_lib, 'config', 'python.exp')
  384.             g['LDSHARED'] = '%s %s -bI:%s' % (ld_so_aix, g['CC'], python_exp)
  385.         elif sys.platform == 'beos':
  386.             python_lib = get_python_lib(standard_lib = 1)
  387.             linkerscript_path = string.split(g['LDSHARED'])[0]
  388.             linkerscript_name = os.path.basename(linkerscript_path)
  389.             linkerscript = os.path.join(python_lib, 'config', linkerscript_name)
  390.             g['LDSHARED'] = '%s -L%s/lib -lpython%s' % (linkerscript, PREFIX, get_python_version())
  391.         
  392.     
  393.     _config_vars = g
  394.  
  395.  
  396. def _init_nt():
  397.     '''Initialize the module as appropriate for NT'''
  398.     global _config_vars
  399.     g = { }
  400.     g['LIBDEST'] = get_python_lib(plat_specific = 0, standard_lib = 1)
  401.     g['BINLIBDEST'] = get_python_lib(plat_specific = 1, standard_lib = 1)
  402.     g['INCLUDEPY'] = get_python_inc(plat_specific = 0)
  403.     g['SO'] = '.pyd'
  404.     g['EXE'] = '.exe'
  405.     _config_vars = g
  406.  
  407.  
  408. def _init_mac():
  409.     '''Initialize the module as appropriate for Macintosh systems'''
  410.     global _config_vars
  411.     g = { }
  412.     g['LIBDEST'] = get_python_lib(plat_specific = 0, standard_lib = 1)
  413.     g['BINLIBDEST'] = get_python_lib(plat_specific = 1, standard_lib = 1)
  414.     g['INCLUDEPY'] = get_python_inc(plat_specific = 0)
  415.     import MacOS as MacOS
  416.     if not hasattr(MacOS, 'runtimemodel'):
  417.         g['SO'] = '.ppc.slb'
  418.     else:
  419.         g['SO'] = '.%s.slb' % MacOS.runtimemodel
  420.     g['install_lib'] = os.path.join(EXEC_PREFIX, 'Lib')
  421.     g['install_platlib'] = os.path.join(EXEC_PREFIX, 'Mac', 'Lib')
  422.     g['srcdir'] = ':'
  423.     _config_vars = g
  424.  
  425.  
  426. def _init_os2():
  427.     '''Initialize the module as appropriate for OS/2'''
  428.     global _config_vars
  429.     g = { }
  430.     g['LIBDEST'] = get_python_lib(plat_specific = 0, standard_lib = 1)
  431.     g['BINLIBDEST'] = get_python_lib(plat_specific = 1, standard_lib = 1)
  432.     g['INCLUDEPY'] = get_python_inc(plat_specific = 0)
  433.     g['SO'] = '.pyd'
  434.     g['EXE'] = '.exe'
  435.     _config_vars = g
  436.  
  437.  
  438. def get_config_vars(*args):
  439.     """With no arguments, return a dictionary of all configuration
  440.     variables relevant for the current platform.  Generally this includes
  441.     everything needed to build extensions and install both pure modules and
  442.     extensions.  On Unix, this means every variable defined in Python's
  443.     installed Makefile; on Windows and Mac OS it's a much smaller set.
  444.  
  445.     With arguments, return a list of values that result from looking up
  446.     each argument in the configuration variable dictionary.
  447.     """
  448.     global _config_vars
  449.     if _config_vars is None:
  450.         func = globals().get('_init_' + os.name)
  451.         if func:
  452.             func()
  453.         else:
  454.             _config_vars = { }
  455.         _config_vars['prefix'] = PREFIX
  456.         _config_vars['exec_prefix'] = EXEC_PREFIX
  457.         if sys.platform == 'darwin':
  458.             kernel_version = os.uname()[2]
  459.             major_version = int(kernel_version.split('.')[0])
  460.             if major_version < 8:
  461.                 for key in ('LDFLAGS', 'BASECFLAGS', 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'):
  462.                     flags = _config_vars[key]
  463.                     flags = re.sub('-arch\\s+\\w+\\s', ' ', flags)
  464.                     flags = re.sub('-isysroot [^ \t]*', ' ', flags)
  465.                     _config_vars[key] = flags
  466.                 
  467.             
  468.         
  469.     
  470.     if args:
  471.         vals = []
  472.         for name in args:
  473.             vals.append(_config_vars.get(name))
  474.         
  475.         return vals
  476.     else:
  477.         return _config_vars
  478.  
  479.  
  480. def get_config_var(name):
  481.     """Return the value of a single variable using the dictionary
  482.     returned by 'get_config_vars()'.  Equivalent to
  483.     get_config_vars().get(name)
  484.     """
  485.     return get_config_vars().get(name)
  486.  
  487.